home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / CUGUK / PC_LIBS / C044.ZIP / VIDEO7.ZIP / VID7DET.PAS < prev    next >
Pascal/Delphi Source File  |  1989-08-09  |  592b  |  26 lines

  1. {***************************************}
  2. {  VID256 BGI driver   unit interface   }
  3. {       Thomas Design                   }
  4. {       August 5,  1989                 }
  5. {***************************************}
  6.  
  7. unit VID7DET;
  8. interface
  9.  
  10. const
  11.   VID320x200 = 0;                     { Standard VGA mode 13h }
  12.   VID640x400 = 1;
  13.   VID640x480 = 2;
  14.   VID720x540 = 3;
  15.   VID800x600 = 4;
  16.  
  17. procedure _VIDDriverProc;
  18. function  _DetectVID256:integer;
  19.  
  20. implementation
  21. procedure _VIDDRIVERPROC; external;
  22. {$L VID256.OBJ }
  23. function  _DetectVID256;  external;
  24. {$L VID7DET.OBJ }
  25. end.
  26.